Introduction

Originating in Belgium or France in the late 1600’s, the french-fry has been around longer than the United States. While the origination is disputed, our research team is interested in the modern-day french-fry. The french-fry’s long history has created the opportunity for a large number of variants: The waffle fry, the steak fry, the curly fry, etc. To limit the scope of our research we set our sights on the traditional, standard cut fry. The standard cut fry is evenly cut, medium-thin, and only fried once.

We want to know how different American fast-food chains fries compare. Using properties like weight, width, length, height, and cost, we can get each brands mean fry. Then compare different companies mean fry to find the best value fry. While subjective, the best value fry has the lowest cost per fry density. In more simple terms, we are asking “Which American fast-food company gives the most fry per dollar?”

Methodology and Data Collection

We decided to compare 4 major American fast-food companies: McDonalds, Carl’s Jr., Burger King, and Wendy’s. Our process involved ordering a large fry then measuring the weight, length, width, and height of each fry. Due to budgetary constraints a single order of large fries was procured from each location.

Fries were collected during the last week of March 2022. A researcher would place the fry on a scale and read the weight visible on the scale. The scale is an Ozeri ZK14-S Pronto digital kitchen and food scale. The scale is accurrate from 0 to 5100 grams. The scale has a precision to 1 gram (0.04 oz). A second researcher would input the data into a .csv file.

Fry On Scale

The researcher will then take the fry and measure it’s length. The measurement device is a stainless steel millimeter/inch ruler that is 6 inches long. If the fry is curved the researcher would extend the fry until straight. The researcher would then measure the center of the fry by the height and width and state the two numbers. As before, a second researcher would input those values into the .csv file. A single fry was longer than the measuring tape. This specific fry was measured to the entire length then shifted to measure the remaining length. Each fry was placed directly on the measuring ruler then visually measured.

Fry Measured By Length

The weight and cost of each large fry can be seen below:

Measuring each fry from the four companies provided data from over 300 fries and over 1200 data points. Weights were collected in ounces, the ounces were converted to grams due to the scale’s accuracy. Due to measurement limitations the weights and dimensions are discrete variables though weight and length are in actuality continuous variables. While measuring the scale would occasionally oscillate between two weight values; example of 1 and 2 ounces. While weight could normally be a continuous variable, due to the scale limitations, weight will be treated as discrete measurements in terms of grams.

Evaluating the data will consist of visualizing each company’s measured large fry population values to find possible trends. Then we will get statistical data to evaluate what the average fry is for each company. This includes measured data like weight and calculated values like density or other meaningful statistical values. Using the values of an average fry we will then use a confidence interval to see the bounds on our experiment and validate each average fry. Once this has been done for each company, we can then compare the average fry between companies.

Data Analysis

Weight Accuracy

The combined weight of the collective fries was different than the weight of all fries combined.

Combined Weight vs. Individual Weights Summed
Location Wendy’s Burger King McDonalds Carl’s Jr
Combined Weight 180 182 185 151
Individual Sums 166 185 174 137

Combining all values results in a standard deviation of 10.5 grams among all the fries. This indicates a standard deviation of a standard deviation, or error of 0.0330189 grams per fry. For the remainder of the data collected we will analyze the data assuming no weight measurement error.

To begin lets take a look at all of our measured results and compare them by company. We used the following code to generate then next 4 graphs.

ggplot(fries) +
  geom_density(aes(x=Length, fill=Business), alpha=0.5) +
  labs(
    title="Length of Fries",
    x="Length (mm)"
  ) +
  theme_gray()

Looking at this data gives us a pretty good idea about the overall picture. First, almost all of the data looks somewhat normally distributed. This is good because it means that our random sample of buying a large fry had a pretty good distribution per company. Second, looking at height and width, McDonalds seems incredibly consistent at that 5mm mark. Third, burger king looks to have an average fry that is thicker, longer, taller, and heavier than any other fry.

Because Burger Kings fries are clearly winning in each of these categories, it seems intuitive to believe that BK has the best average fry. However, we are negating cost and amount. We would bet that burger king either charges more per fry and/or gives you less fries. Lets also take a look at the number of fries and the cost of the fries.

Conclusions